home *** CD-ROM | disk | FTP | other *** search
/ Nikkei Mac 20 / NIKKEI-MAC-CD-VOL-20-1998-12.ISO.7z / NIKKEI-MAC-CD-VOL-20-1998-12.ISO / デモソフトライブラリー / 日本テレコムODNスターターキット / OT⁄PPP 1.0 Install / CCL Disk / Modem CCLs / TDK DN1280 (128K MP) / TDK DN1280 (128K MP) next >
Text File  |  1997-05-28  |  3KB  |  147 lines

  1. !***************************************************************
  2. !   Linkboy DUO128 CCL (HDLC 128Kbps MP) ver1.00
  3. !                    Copyright 1996 株式会社ビー・ユー・ジー
  4. !***************************************************************
  5. @ORIGINATE
  6. @ANSWER
  7. !
  8. !
  9. !===============================================================
  10. !    Reset Serial
  11. !===============================================================
  12. serreset 57600, 0, 8, 1
  13. hsreset 0 1 0 0 0 0
  14. !
  15. !
  16. !===============================================================
  17. !    Init TA
  18. !===============================================================
  19. @LABEL 10
  20. matchclr
  21. matchstr 1 12 "OK"
  22. settries 0
  23. @LABEL 11
  24. write "AT¥13"
  25. matchread 30
  26. inctries
  27. iftries 3 99
  28. jump 11
  29. !
  30. @LABEL 12
  31. matchclr
  32. matchstr 1 13 "OK"
  33. write "AT&F !G52 E0 X2 &Q7 ¥¥q3 $S12 S172=1¥13"
  34. matchread 30
  35. jump 99
  36. !
  37. @LABEL 13
  38. ifORIGINATE 30
  39. !
  40. !
  41. !===============================================================
  42. !    Answer
  43. !===============================================================
  44. @LABEL 20
  45. matchclr
  46. matchstr  1 61 "CONNECT 128000"
  47. matchstr  2 62 "CONNECT 64000"
  48. matchstr  3 63 "CONNECT 56000"
  49. matchstr  4 64 "CONNECT 38400"
  50. matchstr  5 65 "CONNECT 19200"
  51. matchstr  6 66 "CONNECT 9600"
  52. !
  53. @LABEL 21
  54. matchread 600
  55. jump 21
  56. !
  57. !
  58. !===============================================================
  59. !    Originate
  60. !===============================================================
  61. @LABEL 30
  62. matchclr
  63. matchstr  1 61 "CONNECT 128000"
  64. matchstr  2 62 "CONNECT 64000"
  65. matchstr  3 63 "CONNECT 56000"
  66. matchstr  4 64 "CONNECT 38400"
  67. matchstr  5 65 "CONNECT 19200"
  68. matchstr  6 66 "CONNECT 9600"
  69. matchstr 11 90 "NO CARRIER"
  70. matchstr 12 90 "ERROR"
  71. matchstr 13 91 "NO ANSWER"
  72. matchstr 14 92 "BUSY"
  73. matchstr 15 92 "DELAYED"
  74. !
  75. note "^1に発信しています。..." 3
  76. write "ATD^1¥13"
  77. matchread 600
  78. jump 99
  79. !
  80. !
  81. !===============================================================
  82. !    Connect
  83. !===============================================================
  84. @LABEL 60
  85. !
  86. @LABEL 61
  87. note "回線速度128000 bpsで接続しています..." 2
  88. communicatingat 128000
  89. userhook 3
  90. jump 69
  91. !
  92. @LABEL 62
  93. note "回線速度64000 bpsで接続しています..." 2
  94. communicatingat 64000
  95. userhook 3
  96. jump 69
  97. !
  98. @LABEL 63
  99. note "回線速度56000 bpsで接続しています..." 2
  100. communicatingat 56000
  101. userhook 3
  102. jump 69
  103. !
  104. @LABEL 64
  105. note "回線速度38400 bpsで接続しています..." 2
  106. communicatingat 38400
  107. jump 69
  108. !
  109. @LABEL 65
  110. note "回線速度19200 bpsで接続しています..." 2
  111. communicatingat 19200
  112. jump 69
  113. !
  114. @LABEL 66
  115. note "回線速度9600 bpsで接続しています..." 2
  116. communicatingat 9600
  117. jump 69
  118. !
  119. @LABEL 69
  120. exit 0
  121. !
  122. !
  123. !===============================================================
  124. !    Hang Up
  125. !===============================================================
  126. @HANGUP
  127. DTRClear
  128. pause 10
  129. DTRSet
  130. exit 0
  131. !
  132. !
  133. !===============================================================
  134. !    Error
  135. !===============================================================
  136. @LABEL 90
  137. exit -6021
  138. !
  139. @LABEL 91
  140. exit -6023
  141. !
  142. @LABEL 92
  143. exit -6022
  144. !
  145. @LABEL 99
  146. exit -6019
  147.